Worldclim elevation map#
import pandas as pd
import cartopy.crs as ccrs
import hvplot.xarray
import hvplot.pandas
import xarray as xr
from bokeh.plotting import figure, show, output_notebook
output_notebook()
ds = xr.open_dataarray('wc2.1_10m_elev.tif')
ds = ds.sel(band=1)
dfp = pd.read_csv('occ.csv',index_col=0)
ds.hvplot()
# dfp.hvplot.scatter(x='lon',y='lat')